Represents a group of elements with the same key belonging to a collection of groups resulting from a search operation with grouping.

Namespace:  C1.LiveLinq.Indexing.Search
Assembly:  C1.LiveLinq (in C1.LiveLinq.dll)

Syntax

C#
public abstract class IndexedGroup<TKey, T> : IndexedGroup<T>, 
	IGrouping<TKey, T>, IEnumerable<T>, IEnumerable
Visual Basic
Public MustInherit Class IndexedGroup(Of TKey, T) _
	Inherits IndexedGroup(Of T) _
	Implements IGrouping(Of TKey, T), IEnumerable(Of T),  _
	IEnumerable

Type Parameters

TKey
The type of the index key.
T
The type of the elements of the indexed collection.

Inheritance Hierarchy

System..::..Object
  C1.LiveLinq.Indexing.Search..::..IndexQuery<(Of <(<'T>)>)>
    C1.LiveLinq.Indexing.Search..::..IndexedGroup<(Of <(<'T>)>)>
      C1.LiveLinq.Indexing.Search..::..IndexedGroup<(Of <(<'TKey, T>)>)>

See Also